* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #e8eef78a !important;
}

.whole-page-wrapper {
  background-image: url("../Assets/E-70.png");
  background-position: center;
  background-size: contain;
  max-width:3200px;
  margin-left:auto;
  margin-right:auto;
}

.animation-overlay,
.animation-overlay-smallscreen {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background-color: #F9F7FC;
  opacity: 1;
  transition: all .5s ease;
  z-index: 9999;
}

#animation-container svg {
  max-width: 1920px;
  max-height: 1100px;
  position: absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  margin:auto;
}

.animation-overlay.hidden,
.animation-overlay-smallscreen.hidden {
  opacity: 0;
  visibility: hidden;
}
.video-section {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider {
  position: absolute;
  bottom: 15%;
  text-align: center;
  width: 100%;
  z-index: 1;
  padding-bottom: 56.25%;
}

.slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  text-shadow: 2px 2px black;
}

#hero-button {
  margin-top: 40px;
  width: 250px;
  height: 70px;
  border-radius: 40px;
  background-color: #f7c851;
  color: white;
  border: 2px solid #f7c851;
  transition: .5s ease;
}

#hero-button:hover,
#hero-button:active,
#hero-button-small:active {
  background-color: transparent;
  color: #f7c851;
}

#hero-button-small {
  margin-top: 5px;
  width: 130px;
  height: 25px;
  border-radius: 40px;
  background-color: #f7c851;
  color: white;
  border: 2px solid #f7c851;
  transition: .5s ease;
}

#mute-button-div {
  background-color: #d26e63;
  justify-content: end;
  display: flex;
  padding: 15px;
}

#mute-sound-button {
  background-color: #d26e63;
  border: none;
  color: white;
  position: absolute;
  right: 10px;
  padding:5px 15px 5px 5px;
}

.description-section {
  text-align: center;
  background-image: url('../Assets/E-93.png');
  background-size: cover;
  height: 420px;
  z-index: 0;
  position: relative;
  background-position: bottom;
}

.description-header {
  color: white;
  background-color: #d26e63;
  padding: 15px 0 15px 0;
  box-shadow: 0px 9px 10px 4px rgb(167 157 157 / 70%);
}

.text-div {
  position: relative;
  z-index: 1;
  max-width: 670px;
  margin-right: auto;
  margin-left: auto;
  padding: 5px 0 0 0;
  color:#1c2f4d;
}

.description-text {
  padding: 0px 30px 40px 30px;
}

.drop-element {
  height: 37px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  position: relative;
}

.animated-sun-div {
  transform: translateY(-220px) translateX(-190px);
  overflow: hidden;
  text-align: end;
}

.animated-sun-div .first-butterfly {
  height: 100px;
  position: absolute;
  margin: auto;
  right: 0;
  transform: translateX(-528px) translateY(115px);
  animation-name: first-butterfly-animation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.animated-sun-div .second-butterfly {
  height: 100px;
  position: absolute;
  margin: auto;
  bottom:0;
  right:0;
  transform: translateX(-1310px);
  animation-name: second-butterfly-animation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-delay: .5s;
}

.animated-sun-div .third-butterfly {
  height: 110px;
  position: absolute;
  margin: auto;
  right: 0;
  transform: translateX(-1660px) translateY(70px);
  animation-name: third-butterfly-animation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-delay: 1.2s;
}

@keyframes first-butterfly-animation {
  0%, 100% {
    transform: translateX(-528px) translateY(115px) rotateY(0deg);
  }
  50% {
    transform: translateX(-528px) translateY(115px) rotateY(180deg);
  }
}

@keyframes second-butterfly-animation {
  0%, 100% {
    transform: translateX(-1310px) rotateY(0deg);
  }
  50% {
    transform: translateX(-1310px) rotateY(180deg);
  }
}

@keyframes third-butterfly-animation {
  0%, 100% {
    transform: translateX(-1660px) translateY(70px) rotateY(0deg);
  }
  50% {
    transform: translateX(-1660px) translateY(70px) rotateY(180deg);
  }
}

.animated-sun {
  width:320px;
  animation-name: sun-animation;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.animated-sun2 {
  width:320px;
  transform: translateX(324px);
}

@keyframes sun-animation {

  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

.animated-sun-div-smallscreen {
  transform: translateY(-120px);
  overflow: hidden;
}

.animated-sun-div-smallscreen .first-butterfly {
  height: 100px;
  position: absolute;
  margin: auto;
  right: 0;
  transform: translateX(-580px) translateY(150px);
  animation-name: first-butterfly-animation-smallscreen;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.animated-sun-div-smallscreen .second-butterfly {
  height: 100px;
  position: absolute;
  margin: auto;
  right: 0;
  transform: translateX(-95px) translateY(40px);
  animation-name: second-butterfly-animation-smallscreen;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-delay: .5s;
}

.animated-sun-div-smallscreen .third-butterfly {
  height: 100px;
  position: absolute;
  margin: auto;
  right: 0;
  transform: translateX(-365px) translateY(40px);
  animation-name: third-butterfly-animation-smallscreen;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-delay: 1.2s;
}

@keyframes first-butterfly-animation-smallscreen {
  0%, 100% {
    transform: translateX(-580px) translateY(150px) rotateY(0deg);
  }

  50% {
    transform: translateX(-580px) translateY(150px) rotateY(180deg);
  }
}

@keyframes second-butterfly-animation-smallscreen {
  0%, 100% {
    transform: translateX(-95px) translateY(40px) rotateY(0deg);
  }

  50% {
    transform: translateX(-95px) translateY(40px) rotateY(180deg);
  }
}

@keyframes third-butterfly-animation-smallscreen {
  0%, 100% {
    transform: translateX(-365px) translateY(40px) rotateY(0deg);
  }

  50% {
    transform: translateX(-365px) translateY(40px) rotateY(180deg);
  }
}

.animated-sun-smallscreen {
  width:250px;
  animation-name: sun-animation;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  overflow: hidden;
  left:0;
  position:absolute;
}

.animated-sun2-smallscreen {
  width:250px;
  left:0;
  overflow: hidden;
}

@keyframes sun-animation {

  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

.animated-fish-div {
  position: relative;
}

.animated-fish {
  width:200px;
  animation-name: fish-animation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  left: 230px;
  top: -650px;
  position: absolute;
}

@keyframes fish-animation {
  0%, 100% {
    transform: rotateZ(-10deg);
  }

  50% {
    transform: rotateZ(10deg);
  }

}

.card-section {
  position:relative;
  overflow: hidden;
  z-index: 3;
  transform: translateY(-450px);
  padding:0px 20px 0px 20px;
}

div.card-body {
  padding-bottom: 90px;
  text-align: center;
}

.card-text {
  color: white;
  position: relative;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
}

#left-card {
  background-image: url("../Assets/Home_page/E-80.png");
  max-width: 500px;
  --bs-card-border-radius: 12rem;
}

#right-card {
  background-image: url("../Assets/Home_page/E-81.png");
  background-position: bottom;
  max-width: 500px;
  --bs-card-border-radius: 12rem;
}

.card-link {
  color: #f7c851;
  text-decoration-line: underline;
  text-underline-offset: 10px;
  text-decoration-color: rgb(	247, 200, 81, 1);
  transition: .25s all;
}

.card-link:hover {
  text-decoration-color: rgb(	247, 200, 81, 0);
  cursor: pointer;
}

/*Cards animation*/
.left-card {
  border: 1em solid #fff;
  border-bottom: 4em solid #fff;
  border-radius: .25em;
  box-shadow: 1em 1em 2em .25em rgba(0,0,0,.2);
  margin: 0em auto;
  animation-iteration-count: infinite;
  transform: translateY(0px);
  transition: transform 2s ease-in-out;
}

.left-card:hover {
  animation: 0;
  animation:hover-position-in;
}

.left-card-animation:hover {
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.left-card-animation {
  animation-duration: 4s;
  -webkit-animation-duration: 4s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.drifting-animation-left {
  -webkit-animation-name: drifting-animation-left;
  animation-name: drifting-animation-left;
}

@keyframes drifting-animation-left {
  0%, 100% {
    transform: rotateZ(-5deg);
  }

  50% {
    transform: rotateZ(5deg);
  }
}

@-webkit-keyframes drifting-animation-left {
  0%, 100% {
    -webkit-transform: rotateZ(-5deg);
  }

  50% {
    -webkit-transform: rotateZ(5deg);
  }
}

.right-card {
  border: 1em solid #fff;
  border-bottom: 4em solid #fff;
  border-radius: .25em;
  box-shadow: 1em 1em 2em .25em rgba(0,0,0,.2);
  margin: auto;
  animation-iteration-count: infinite;
}

.right-card:hover {
  animation: 0;
  animation:hover-position-in;
}

.right-card-animation:hover {
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.right-card-animation {
  animation-duration: 4s;
  -webkit-animation-duration: 4s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.drifting-animation-right {
  -webkit-animation-name: drifting-animation-right;
  animation-name: drifting-animation-right;
}

@keyframes drifting-animation-right {
  0%, 100% {
    transform: rotateZ(5deg);
  }

  50% {
    transform: rotateZ(-5deg);
  }
}

@-webkit-keyframes drifting-animation-right {
  0%, 100% {
    -webkit-transform: rotateZ(5deg);
  }

  50% {
    -webkit-transform: rotateZ(-5deg);
  }
}

@keyframes hover-position-in {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-100px);
  }
}

@keyframes hover-position-in-smallscreen {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-80px);
  }
}
/*Cards animation*/

div#left-card-container,
div#right-card-container {
  display: flex;
  justify-content: center;
  padding:160px 80px 50px 80px;
  z-index: 4;
}

.section-wrapper {
  background-image: url('../Assets/Home_page/E-120.png');
  background-size: cover;
  background-position: bottom;
}

.wave-image-section {
  background-image: url('../Assets/Home_page/E-46.png');
  background-size: cover;
  min-height: 600px;
  background-position: center;
  position:relative;
  transform: translateY(-680px);
  z-index:5;
}

.wave-image-section-text {
  z-index: 6; 
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 768px;
  transform: translateY(200px);
  color: #1c2f4d;
  padding: 30px 30px 0 30px;
  border: 2px solid #1c2f4d;
  border-radius: 20px;
  background-color: rgba(255,255,255,.7);
}

#wave-img-smallscreen {
  position: relative;
  z-index: 4;
  object-fit: cover;
  height: 330px;
  transform: translateY(-220px);
}

.section-crab-div {
  transform: translateY(-120px);
}

.section-crab {
  position: relative;
  margin-left: auto;
  margin-right:auto;
  display: block;
  max-height: 300px;
  overflow: hidden;
  animation-name: crab-animation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
}

@keyframes crab-animation {
  0%, 100% {
    transform: rotateZ(-4deg) scale(.7) scaleX(-1);
  }
  50% {
    transform: rotateZ(4deg) scale(.7) scaleX(-1);
  }
}

.card-wrapper {
  transform: translateY(195px);
}

.register-section {
  margin-top: 100px;
  text-align: center;
}

.register-section h2 {
  font-size: 38px;
  color: #1d477c
}

.register-section .register-button {
  margin: 80px auto 140px auto;
  font-family: 'Poppins', serif;
  font-size: 32px;
  display: block;
  width: 300px;
  height: 70px;
  background-color: #f7c851;
  color: white;
  transition: .5s ease;
  border: 1px solid transparent;
  border-radius: 10px;
}

.register-section .register-button:hover,
.register-section .register-button:active {
  background-color: transparent;
  border: 1px solid #f7c851;
  color: #f7c851;
}

@media screen and (max-width: 2700px) {
  .section-wrapper {
    background-image: url('../Assets/Home_page/E-79.png');
    background-position: bottom;
  }

  .section-crab-div {
    transform: translateY(-160px);
  }
}

@media screen and (min-width: 2350px) {
  .description-section {
    height: 450px;
  }
}

@media screen and (max-width: 2100px) {
  .animated-fish-div {
    display:none;
  }

  .animated-sun-div {
    transform: translateY(-190px) translateX(0px);
  }
}

@media screen and (max-width:1888px) {
  .animated-sun-div .first-butterfly {
    transform: translateX(-528px) translateY(115px);
  }
  
  .animated-sun-div .second-butterfly {
    transform: translateX(-1010px);
  }
  
  .animated-sun-div .third-butterfly {
    transform: translateX(-1360px) translateY(70px);
  }

  @keyframes first-butterfly-animation {
    0%, 100% {
      transform: translateX(-528px) translateY(115px) rotateY(0deg);
    }
    50% {
      transform: translateX(-528px) translateY(115px) rotateY(180deg);
    }
  }
  
  @keyframes second-butterfly-animation {
    0%, 100% {
      transform: translateX(-1010px) rotateY(0deg);
    }
    50% {
      transform: translateX(-1010px) rotateY(180deg);
    }
  }
  
  @keyframes third-butterfly-animation {
    0%, 100% {
      transform: translateX(-1360px) translateY(70px) rotateY(0deg);
    }
    50% {
      transform: translateX(-1360px) translateY(70px) rotateY(180deg);
    }
  }
}

@media screen and (max-width: 1600px) {
  .animated-fish-div {
    display: none;
  }
}

@media screen and (max-width: 1500px) {
  .animated-sun-div {
    transform: translateY(-175px);
  }
  
  .animated-sun {
    width:250px;
    overflow: hidden;
  }
  
  .animated-sun2 {
    width:250px;
    transform: translateX(255px);
  }

  .animated-sun-div .third-butterfly {
    transform: translateX(-1205px) translateY(70px);
  }

  @keyframes third-butterfly-animation {
    0%, 100% {
      transform: translateX(-1205px) translateY(70px) rotateY(0deg);
    }
    50% {
      transform: translateX(-1205px) translateY(70px) rotateY(180deg);
    }
  }
}

@media screen and (max-width:1384px) {
  .animated-sun-div .first-butterfly {
    transform: translateX(-528px) translateY(115px);
  }
  
  .animated-sun-div .second-butterfly {
    transform: translateX(-895px);
  }

  .animated-sun-div .third-butterfly {
    transform: translateX(-1065px) translateY(70px);
  }

  @keyframes first-butterfly-animation {
    0%, 100% {
      transform: translateX(-528px) translateY(115px) rotateY(0deg);
    }
    50% {
      transform: translateX(-528px) translateY(115px) rotateY(180deg);
    }
  }
  
  @keyframes second-butterfly-animation {
    0%, 100% {
      transform: translateX(-895px)rotateY(0deg);
    }
    50% {
      transform: translateX(-895px) rotateY(180deg);
    }
  }
  
  @keyframes third-butterfly-animation {
    0%, 100% {
      transform: translateX(-1065px) translateY(70px) rotateY(0deg);
    }
    50% {
      transform: translateX(-1065px) translateY(70px) rotateY(180deg);
    }
  }
}

@media screen and (max-width: 1200px) {
  .slider {
    bottom: 0;
  }

  .card-wrapper {
    transform: translateY(287px);
  }

  .description-section {
    height: 330px;
  }

  .wave-image-section {
    min-height: 400px;
  }

  .section-crab {
    max-height: 200px;
  }

  .animated-sun-div {
    display: none;
  }

  .register-section .register-button {
    font-size: 26px;
    width: 260px;
    height: 55px;
  }

  .register-section h2 {
    font-size: 34px;
  }

  #hero-button {
    width: 230px;
    height: 65px;
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 1201px) {
  .animated-sun-div-smallscreen {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .wave-image-section {
    min-height: 420px;    
  }

  .description-section {
    height: 320px;
  }

  .wave-image-section-text {
    transform: translateY(160px);    
  }

  .text-div {
    max-width: 500px;
  }

  .animated-sun-smallscreen,
  .animated-sun2-smallscreen {
    width:200px;
  }

  div#left-card-container,
  div#right-card-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  #hero-button {
    width: 210px;
    height: 60px;
  }

  .animated-sun-div-smallscreen .first-butterfly {
    height:80px;
    transform: translateX(-435px) translateY(120px);
  }
  
  .animated-sun-div-smallscreen .second-butterfly {
    height:80px;
    transform: translateX(-35px) translateY(40px);
  }
  
  .animated-sun-div-smallscreen .third-butterfly {
    height:80px;
    transform: translateX(-270px) translateY(40px)
  }

  @keyframes first-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-435px) translateY(120px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-435px) translateY(120px) rotateY(180deg);
    }
  }
  
  @keyframes second-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-35px) translateY(40px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-35px) translateY(40px) rotateY(180deg);
    }
  }
  
  @keyframes third-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-270px) translateY(40px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-270px) translateY(40px) rotateY(180deg);
    }
  }
}

@media screen and (max-width: 767px) {

  #hero-button {
    width: 190px;
    height: 50px;
  }

  .section-wrapper {
    background-image: url('../Assets/Home_page/E-74.png');
    background-size: cover;
    background-position: center;
  }

  .card-section #left-card-container {
    padding-bottom: 40px;
    padding-top: 120px;
    transform: translateY(-35px);
  }

  .card-section #right-card-container {
    padding-top: 0;
    transform: translateY(-45px);
  }

  .card-section {
    transform: translateY(-265px);
    padding-left: 0;
    padding-right: 0;
  }

  #right-card, 
  #left-card {
    max-width: 400px;
  }

  .wave-image-section {
    transform: translateY(-500px);
  }

  .wave-image-section-text {
    margin-left: 40px;
    margin-right: 40px;
  }

  .card-wrapper {
    transform: translateY(210px);
  }

  .section-crab-div {
    transform: translateY(-10px);
  }
  
  .left-card:hover {
    animation: 0;
    animation:hover-position-in-smallscreen;
  }
  .left-card-animation:hover {
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }

  .right-card:hover {
    animation: 0;
    animation:hover-position-in-smallscreen;
  }
  .right-card-animation:hover {
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }

  .animated-sun-div-smallscreen {
    transform: translateY(-50px);
  }
  
  .animated-sun-smallscreen {
    width:200px;
  }
  
  .animated-sun2-smallscreen {
    width:200px;
  }

  .animated-sun-div-smallscreen .first-butterfly {
    transform: translateX(-330px) translateY(120px);
  }
  
  .animated-sun-div-smallscreen .second-butterfly {
    transform: translateX(-35px) translateY(40px);
  }
  
  .animated-sun-div-smallscreen .third-butterfly {
    transform: translateX(-210px) translateY(15px);
  }

  @keyframes first-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-330px) translateY(120px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-330px) translateY(120px) rotateY(180deg);
    }
  }
  
  @keyframes second-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-35px) translateY(40px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-35px) translateY(40px) rotateY(180deg);
    }
  }
  
  @keyframes third-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-210px) translateY(15px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-210px) translateY(15px) rotateY(180deg);
    }
  }
}

@media screen and (max-width: 668px) {

  .animated-sun-div-smallscreen .first-butterfly {
    transform: translateX(-149px) translateY(120px);
  }
  
  .animated-sun-div-smallscreen .second-butterfly {
    transform: translateX(-280px) translateY(63px);
  }
  
  .animated-sun-div-smallscreen .third-butterfly {
    transform: translateX(-60px) translateY(15px);
  }

  @keyframes first-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-149px) translateY(120px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-149px) translateY(120px) rotateY(180deg);
    }
  }
  
  @keyframes second-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-280px) translateY(63px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-280px) translateY(63px) rotateY(180deg);
    }
  }
  
  @keyframes third-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-60px) translateY(15px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-60px) translateY(15px) rotateY(180deg);
    }
  }
}

@media screen and (max-width: 575px) {
  #hero-button {
    width: 170px;
    height: 45px;
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .wave-image-section-text {
    transform: translateY(100px);
  }

  .register-section .register-button {
    font-size: 22px;
    width: 200px;
    height: 45px;
  }

  .register-section h2 {
    font-size: 30px;
  }

  .section-wrapper {
    background-position-y: -45px;
  }

  .card-wrapper {
    transform: translateY(350px);
  }

  .animated-sun-div-smallscreen {
    transform: translateY(0px);
  }

  .animated-sun-smallscreen {
    right:0;
    position: absolute;
  }

  .card-wrapper {
    transform: translateY(235px);
  }

  .section-crab-div {
    transform: translateY(-85px);
  }

  #right-card, 
  #left-card {
    max-width: 340px;
  }

  #wave-img-smallscreen {
    height: 300px;
  }

  .animated-sun-div-smallscreen .second-butterfly {
    transform: translateX(-200px) translateY(-35px);
  }

  @keyframes second-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-200px) translateY(-35px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-200px) translateY(-35px) rotateY(180deg);
    }
  }
}

@media screen and (max-width: 512px) {
  .animated-sun-div-smallscreen .first-butterfly {
    height:60px;
    transform: translateX(-90px) translateY(140px);
  }
  
  .animated-sun-div-smallscreen .second-butterfly {
    transform: translateX(-140px) translateY(-35px);
  }
  
  .animated-sun-div-smallscreen .third-butterfly {
    height:60px;
    transform: translateX(-60px) translateY(50px);
  }

  @keyframes first-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-90px) translateY(140px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-90px) translateY(140px) rotateY(180deg);
    }
  }
  
  @keyframes second-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-140px) translateY(-35px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-140px) translateY(-35px) rotateY(180deg);
    }
  }
  
  @keyframes third-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-60px) translateY(50px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-60px) translateY(50px) rotateY(180deg);
    }
  }
}

@media screen and (max-width: 462px) {
  .section-wrapper {
    background-position-y: -100px;
  }

  .section-crab-div {
    transform: translateY(-130px);
  }
}

@media screen and (max-width: 438px) {
  #wave-img-smallscreen {
    height: 300px;
  }

  #hero-button {
    width: 150px;
    height: 40px;
    margin-bottom:0;
    margin-top:0;
  }
}

@media screen and (max-width: 414px) {
  .description-section {
    height: 400px;
  }

  .animated-sun-div-smallscreen .first-butterfly {
    height:55px;
    transform: translateX(-25px) translateY(140px);
  }
  
  .animated-sun-div-smallscreen .second-butterfly {
    display: none;
  }
  
  .animated-sun-div-smallscreen .third-butterfly {
    transform: translateX(-60px) translateY(50px);
  }

  @keyframes first-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-25px) translateY(140px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-25px) translateY(140px) rotateY(180deg);
    }
  }
  
  @keyframes third-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-60px) translateY(50px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-60px) translateY(50px) rotateY(180deg);
    }
  }
}

@media screen and (max-width: 367px) {
  .description-section {
    height: 460px;
  }
}

@media screen and (max-width: 355px) {
  .description-section {
    height: 460px;
  }

  .animated-sun-div-smallscreen .first-butterfly {
    height:45px;
    transform: translateX(-25px) translateY(70px);
  }
  
  .animated-sun-div-smallscreen .third-butterfly {
    height:55px;
    transform: translateX(-60px) translateY(0px);
  }

  @keyframes first-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-25px) translateY(70px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-25px) translateY(70px) rotateY(180deg);
    }
  }
  
  @keyframes third-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-60px) translateY(0px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-60px) translateY(0px) rotateY(180deg);
    }
  }
}

@media screen and (max-width: 308px) {
  .description-section {
    height: 460px;
  }

  .animated-sun-div-smallscreen .first-butterfly {
    height:45px;
    transform: translateX(-5px) translateY(70px);
  }
  
  .animated-sun-div-smallscreen .third-butterfly {
    height:55px;
    transform: translateX(-25px) translateY(0px);
  }

  @keyframes first-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-5px) translateY(70px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-5px) translateY(70px) rotateY(180deg);
    }
  }
  
  @keyframes third-butterfly-animation-smallscreen {
    0%, 100% {
      transform: translateX(-25px) translateY(0px) rotateY(0deg);
    }
  
    50% {
      transform: translateX(-25px) translateY(0px) rotateY(180deg);
    }
  }
}





















